home *** CD-ROM | disk | FTP | other *** search
/ PsL Monthly 1993 December / PSL Monthly Shareware CD-ROM (December 1993).iso / prgmming / dos / c / tcclib.exe / PUSHCUR.C < prev    next >
Encoding:
C/C++ Source or Header  |  1989-07-18  |  178 b   |  15 lines

  1. #include <conio.h>
  2.  
  3. int CC_PUSHX, CC_PUSHY;
  4.  
  5. void PushCurpos()
  6. {
  7.     CC_PUSHX = wherex();
  8.     CC_PUSHY = wherey();
  9. }
  10.  
  11. void PopCurpos()
  12. {
  13.     gotoxy( CC_PUSHX, CC_PUSHY );
  14. }
  15.